-
Re: Need to merge duplicate glyphs within a font into single unified glyphs
For TrueType fonts, you can use composite glyphs. The easiest way is to try to determine if some glyphs have the same outlines, and then leave one of them and replace the rest with components from th…1 -
Re: How can small designers' fonts ever sell successfully?
And about 1550 new fonts.3 -
Re: Postscript Font Name Generator
import os import argparse import csv from fontTools.ttLib import TTFont parser = argparse.ArgumentParser() parser.add_argument("dir_path") options = parser.parse_args() dir_path = options.d…3 -
Re: Python 3
Python 2 officially died after January 1, 2020.3 -
Re: Help with quick python script!
Don't know how to call FL SetStartPoint function from script, but you can try this: import fontlab as fl import math for glyph in fl.CurrentFont().glyphs: for layer in fl.flGlyph(glyph).layers: for c…1